|
SHOW PARTICLES
This command will show a particles object, and will instantly show every particle which is deemed part of the particles object previously hidden with the HIDE PARTICLES command.
SHOW PARTICLES Particle Number
Particle Number
Integer
The particles object number
This command does not return a value.
make particles 4, 0, 10, 10.0
position particles 4, 3, 2, 10
set particle emissions 4, 1
set particle speed 4, 0.005
set particle velocity 4, 10
position camera 0,1,0
point camera 0,1,400
while mouseclick()=0
if upkey()=1 then move camera 0.1
if downkey()=1 then move camera -0.1
if leftkey()=1 then turn camera left 1
if rightkey()=1 then turn camera right 1
if rnd(50)=1 then show particles 4
if rnd(50)=1 then hide particles 4
endwhile
delete particles 4
end
PARTICLES Commands Menu
Index
|